home *** CD-ROM | disk | FTP | other *** search
- {name for dll library}
- Library vbinst;
- Uses WinDos;
-
- {function to be called from VB. Export is needed fo dll}
- Function DFree(X: Integer):Longint;Export;
-
- Begin
- {assign DiskFree function to DFree}
- Dfree:=DiskFree(X);
-
- End;
-
- Function DSize(X: Integer):LongInt;Export;
-
- Begin
- DSize:=DiskSize(X);
- End;
-
-
- {needed stuff for dll}
- Exports
- DFree index 1,
- DSize index 2;
-
- {needed null main}
- begin
- end.